Initializes a new instance of the IndexCollection<(Of <(<'T>)>)> class.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public IndexCollection(
	IObservableSource<T> source
)
Visual Basic
Public Sub New ( _
	source As IObservableSource(Of T) _
)

Parameters

source
Type: C1.LiveLinq..::..IObservableSource<(Of <(<'T>)>)>
The collection to be indexed.

Remarks

Normally, you don't need to create instances of the IndexCollection<(Of <(<'T>)>)> class in your code, they already exist in the instances of LiveLinq indexed collection classes. You need to create them explicitly in code only if you define your own indexable collection class and then only if it does not inherit from IndexedCollection<(Of <(<'T>)>)>.

See Also